home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_08_11 / 8n11064a < prev    next >
Encoding:
Text File  |  1990-07-26  |  311 b   |  13 lines

  1. /* std.h - Standard Header File
  2.  *         Copyright 1986-90 by Cnapse
  3.  *         Written by: M. de Champlain
  4.  */
  5.  
  6. typedef  unsigned char   uchar,  byte;
  7. typedef  unsigned short  ushort, word;
  8. typedef  unsigned long   ulong, dword;
  9. typedef  int             bool;
  10.  
  11. #define  loop            while(1)
  12.  
  13.